@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

html{
    font-size: 10px;
    scroll-behavior: smooth;
}
html, body{
    font-family: 'Quicksand', sans-serif;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body.menu-open{
    overflow: hidden;
}
/* ===== NAVBAR ===== */
nav{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 122px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    z-index: 100;
    transition: transform .35s ease, box-shadow .3s ease;
}
nav.nav-hidden{
    transform: translateY(-100%);
}


.nav-container{
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO ===== */
.logo a{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-big{
    font-size: 3.3rem;
    font-weight: 700; 
    color: #243082;
}
.navy{ 
    color: #243082; 
}
.orange{ 
    color: #EF870D; 
}
.logo-small{
    font-size: 1.3rem;
    font-weight: 500;
    color: #243082;
    margin-top: 2px;
    letter-spacing: .3px;
}


.buttons{ 
    display:flex; 
    align-items:center; 
    gap:40px; 
}
.buttons ol{ 
    display:flex; 
    gap:8px; 
    list-style:none; 
}
.buttons ol li a{
    position: relative;
    color:#8ba0c3; 
    text-decoration:none;
    font-size:1.5rem; 
    font-weight:500; 
    text-transform:uppercase;
    padding:1rem .5rem; 
    display:inline-block;
    transition:color .3s ease;
}
.buttons ol li a::after{
    content:''; 
    position:absolute; 
    bottom:0; left:50%;
    width:0; height:2px; 
    background:#EF870D;
    transition:width .3s ease; 
    transform:translateX(-50%);
}
.buttons ol li a:hover{ 
    color:#EF870D; 
}
.buttons ol li a:hover::after{ 
    width:70%; 
}

.btn{
    border:2px solid #EF870D; 
    color:#EF870D;
    padding:12px 26px;
    border-radius:8px;
    text-decoration:none;
    font-size: 2rem; 
    font-weight:500; 
    transition:.3s;
    background-color: #fff;
}
.btn:hover{ 
    background:#EF870D; 
    color:#fff; 
}


.burger{
    color:#EF870D; 
    font-size:3.2rem; 
    padding:.9rem 1rem;
    position:fixed; 
    right:2rem; 
    top:1.6rem; 
    cursor:pointer;
    display:none; 
    z-index:101; 
    background:#fff; 
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,.08); 
    transition:transform .3s ease;
}
.burger:hover{ 
    transform:scale(1.08); 
}

.nakladka{
    background-color: rgba(130, 165, 195, 0.94);
    position:fixed; 
    top:0; 
    right:0; 
    height:100%; 
    width:0;
    overflow:hidden; 
    z-index:200;
    display:flex; 
    align-items:center; 
    justify-content:center;
    transition: width .4s cubic-bezier(0.4,0,0.2,1);
}
.nakladka.open{ 
    width:100%; 
}

.nakladka ol{ 
    width:100%; list-style:none; 
}

.nakladka ol a{
    display:block; 
    margin-bottom:2vh; 
    padding:3vh; 
    text-align:center;
    color:#fff; 
    text-decoration:none; 
    font-size:2.2rem; 
    font-weight:600;
    text-transform:uppercase;
}
.nakladka ol a:hover{ 
    background-color:#fff; 
    color:#111; 
}

.zamknijX{
    border-radius:100px; 
    background-color:#fff; 
    color:#000;
    position:absolute; 
    top:2rem; 
    right:2rem; 
    font-size:4rem;
    padding:.3rem 1.2rem; 
    line-height:1; 
    text-decoration:none;
    cursor:pointer; 
    transition:transform .3s ease;
}
.zamknijX:hover{ 
    transform:rotate(90deg); 
}










.container{
    width: 100%;
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}





.podstrona-header{
    background: #dbe9fb;
    text-align: center;
    padding: 5rem 0;
    margin-top: 122px; 
    position: relative;
}


.podstrona-header::before,
.podstrona-header::after{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #EF870D, transparent);
}
.podstrona-header::before{ 
    top: 0; 
}
.podstrona-header::after{ 
    bottom: 0; 
}

.podstrona-header span{
    font-size: 4rem;
    font-weight: 600;
    color: #1a1a2e;
}






.informacja{
    min-height: 51.2vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tekst-z-informacja{
    margin: 10rem 0 3rem 0;   
    background: #dbe9fb;
    border-radius: 16px;
    padding: 1.8rem 2.5rem;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

.tekst-z-informacja p{
    padding: 2rem;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #020202;
    text-align: center;  
}


.informacja-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 6rem;  

    border: 2px solid #EF870D;
    background-color: #EF870D;
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 500;
    transition: .3s;
}
.informacja-btn:hover{
    background: #fff;
    color: #EF870D;
}


@media all and (max-width: 700px){


    .tekst-z-informacja p{
        padding: 0;
        font-size: 1.3rem;
        line-height: 1.6;
    }

}







.stopka{
    background: #1a2b6d;
    padding: 5rem 0 0;
}

.stopka-grid{
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 3rem;
}

.stopka-brand .logo-big{ 
    font-size: 2.4rem; 
}
.stopka-brand .navy{ 
    color: #fff; 
}

.stopka-brand p{
    color: #c9d3ec;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-top: 1.2rem;
}

.stopka-firma{
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: #8b9bd1;
}

.stopka-col h4{
    color: #EF870D;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.stopka-col ul{
    list-style: none;
}

.stopka-col ul li{
    margin-bottom: .9rem;
}

.stopka-col ul li a{
    color: #c9d3ec;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color .3s ease;
}
.stopka-col ul li a:hover{
    color: #EF870D;
}

.stopka-kontakt li{
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    color: #c9d3ec;
    font-size: 1.5rem;
    line-height: 1.4;
}
.stopka-kontakt i{
    color: #EF870D;
    margin-top: .3rem;
    width: 16px;
}
.stopka-kontakt a{
    color: #c9d3ec;
    text-decoration: none;
}
.stopka-kontakt a:hover{
    color: #EF870D;
}

.stopka-copy{
    border-top: 1px solid #EF870D;
    margin-top: 3.5rem;
    padding: 1.6rem 0;
    text-align: center;
    color: #8b9bd1;
    font-size: 1.2rem;
}

.stopka-disclaimer{
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
    text-align: center;
}

.stopka-disclaimer p{
    color: #8b9bd1;
    font-size: 1rem;
    line-height: 1.5;
}

@media all and (max-width: 900px){
    .stopka-grid{
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .stopka-brand{
        grid-column: 1 / -1; 
    }
}

@media all and (max-width: 700px){
    .stopka-disclaimer p{
        font-size: 1rem;
    }
}

@media all and (max-width: 600px){
    .stopka-grid{
        grid-template-columns: 1fr; 
    }
}





/*--navbar--*/

@media all and (max-width: 1150px){
    .burger{ 
        display:block; 
    }
    nav{ 
        display:none; 
    }

}


@media all and (max-width: 992px){
    .burger{ display: block; }
    nav{ display: none; }
    section{
        scroll-margin-top: 0;
    }
}
@media all and (max-width:600px){
	.burger{display: block; }
	nav{display: none;}
    section{
        scroll-margin-top: 0;}
    }
